home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / frexxed / fpl / fh_action.fpl < prev    next >
Text File  |  1995-07-24  |  279b  |  9 lines

  1. export int FileHandlerAction(int bufferid, int type)
  2. {
  3.   if (type==2 || type==5) { // Hook Write and Create
  4.     Activate(bufferid, 1);  // Activate on half view.
  5.     ExecuteString("GotoLine(-1,-1);", bufferid); // Goto last line
  6.   }
  7. }
  8. Hook("HandlerAction", "FileHandlerAction");
  9.